projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9359387
)
(main) [WINDOWSNT]: Invoke init_ntproc.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 26 Apr 1996 19:53:04 +0000
(19:53 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 26 Apr 1996 19:53:04 +0000
(19:53 +0000)
(shut_down_emacs) [WINDOWSNT]: Invoke term_ntproc.
src/emacs.c
patch
|
blob
|
history
diff --git
a/src/emacs.c
b/src/emacs.c
index 5a603e3d1392d4fab62b2885f3b935981e16cd2b..e9f8439393d0ade08262b0f5fd5deed7d08ec4d0 100644
(file)
--- a/
src/emacs.c
+++ b/
src/emacs.c
@@
-796,6
+796,7
@@
Usage: %s [-t term] [--terminal term] [-nw] [--no-windows] [--batch]\n\
#ifdef WINDOWSNT
/* Initialize environment from registry settings. */
init_environment ();
+ init_ntproc (); /* must precede init_editfns */
#endif
/* egetenv is a pretty low-level facility, which may get called in
@@
-1313,6
+1314,10
@@
shut_down_emacs (sig, no_x, stuff)
unrequest_sigio ();
signal (SIGIO, SIG_IGN);
#endif
+
+#ifdef WINDOWSNT
+ term_ntproc ();
+#endif
}